home *** CD-ROM | disk | FTP | other *** search
- /* expand - function to expand AMIGAdos wild cards
- *
- * Copyright 1991, Mike Meyer
- * All Rights Reserved
- *
- * See the file "Supersaver:Distribution" for information on distribution.
- */
- parse arg files
-
- out = ""
- do i = 1 to words(files)
- pat = word(files, i)
- if verify(pat, '#?', 'Match') = 0 then
- out = out pat
- else do
- 'list lformat %p%n' pat '| execio stem lines.'
- do j = 1 to lines.0
- out = out lines.j
- end
- end
- end
- return out
-